home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / php / php.ini-dist < prev    next >
INI File  |  2004-09-24  |  42KB  |  1,198 lines

  1. [PHP]
  2.  
  3. ;;;;;;;;;;;
  4. ; WARNING ;
  5. ;;;;;;;;;;;
  6. ; This is the default settings file for new PHP installations.
  7. ; By default, PHP installs itself with a configuration suitable for
  8. ; development purposes, and *NOT* for production purposes.
  9. ; For several security-oriented considerations that should be taken
  10. ; before going online with your site, please consult php.ini-recommended
  11. ; and http://php.net/manual/en/security.php.
  12.  
  13.  
  14. ;;;;;;;;;;;;;;;;;;;
  15. ; About php.ini   ;
  16. ;;;;;;;;;;;;;;;;;;;
  17. ; This file controls many aspects of PHP's behavior.  In order for PHP to
  18. ; read it, it must be named 'php.ini'.  PHP looks for it in the current
  19. ; working directory, in the path designated by the environment variable
  20. ; PHPRC, and in the path that was defined in compile time (in that order).
  21. ; Under Windows, the compile-time path is the Windows directory.  The
  22. ; path in which the php.ini file is looked for can be overridden using
  23. ; the -c argument in command line mode.
  24. ;
  25. ; The syntax of the file is extremely simple.  Whitespace and Lines
  26. ; beginning with a semicolon are silently ignored (as you probably guessed).
  27. ; Section headers (e.g. [Foo]) are also silently ignored, even though
  28. ; they might mean something in the future.
  29. ;
  30. ; Directives are specified using the following syntax:
  31. ; directive = value
  32. ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
  33. ;
  34. ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
  35. ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
  36. ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
  37. ;
  38. ; Expressions in the INI file are limited to bitwise operators and parentheses:
  39. ; |        bitwise OR
  40. ; &        bitwise AND
  41. ; ~        bitwise NOT
  42. ; !        boolean NOT
  43. ;
  44. ; Boolean flags can be turned on using the values 1, On, True or Yes.
  45. ; They can be turned off using the values 0, Off, False or No.
  46. ;
  47. ; An empty string can be denoted by simply not writing anything after the equal
  48. ; sign, or by using the None keyword:
  49. ;
  50. ;  foo =         ; sets foo to an empty string
  51. ;  foo = none    ; sets foo to an empty string
  52. ;  foo = "none"  ; sets foo to the string 'none'
  53. ;
  54. ; If you use constants in your value, and these constants belong to a
  55. ; dynamically loaded extension (either a PHP extension or a Zend extension),
  56. ; you may only use these constants *after* the line that loads the extension.
  57. ;
  58. ;
  59. ;;;;;;;;;;;;;;;;;;;
  60. ; About this file ;
  61. ;;;;;;;;;;;;;;;;;;;
  62. ; All the values in the php.ini-dist file correspond to the builtin
  63. ; defaults (that is, if no php.ini is used, or if you delete these lines,
  64. ; the builtin defaults will be identical).
  65.  
  66.  
  67. ;;;;;;;;;;;;;;;;;;;;
  68. ; Language Options ;
  69. ;;;;;;;;;;;;;;;;;;;;
  70.  
  71. ; Enable the PHP scripting language engine under Apache.
  72. engine = On
  73.  
  74. ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
  75. zend.ze1_compatibility_mode = Off
  76.  
  77. ; Allow the <? tag.  Otherwise, only <?php and <script> tags are recognized.
  78. ; NOTE: Using short tags should be avoided when developing applications or
  79. ; libraries that are meant for redistribution, or deployment on PHP
  80. ; servers which are not under your control, because short tags may not
  81. ; be supported on the target server. For portable, redistributable code,
  82. ; be sure not to use short tags.
  83. short_open_tag = On
  84.  
  85. ; Allow ASP-style <% %> tags.
  86. asp_tags = Off
  87.  
  88. ; The number of significant digits displayed in floating point numbers.
  89. precision    =  12
  90.  
  91. ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
  92. y2k_compliance = On
  93.  
  94. ; Output buffering allows you to send header lines (including cookies) even
  95. ; after you send body content, at the price of slowing PHP's output layer a
  96. ; bit.  You can enable output buffering during runtime by calling the output
  97. ; buffering functions.  You can also enable output buffering for all files by
  98. ; setting this directive to On.  If you wish to limit the size of the buffer
  99. ; to a certain size - you can use a maximum number of bytes instead of 'On', as
  100. ; a value for this directive (e.g., output_buffering=4096).
  101. output_buffering = Off
  102.  
  103. ; You can redirect all of the output of your scripts to a function.  For
  104. ; example, if you set output_handler to "mb_output_handler", character
  105. ; encoding will be transparently converted to the specified encoding.
  106. ; Setting any output handler automatically turns on output buffering.
  107. ; Note: People who wrote portable scripts should not depend on this ini
  108. ;       directive. Instead, explicitly set the output handler using ob_start().
  109. ;       Using this ini directive may cause problems unless you know what script
  110. ;       is doing.
  111. ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
  112. ;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
  113. ; Note: output_handler must be empty if this is set 'On' !!!!
  114. ;       Instead you must use zlib.output_handler.
  115. ;output_handler =
  116.  
  117. ; Transparent output compression using the zlib library
  118. ; Valid values for this option are 'off', 'on', or a specific buffer size
  119. ; to be used for compression (default is 4KB)
  120. ; Note: Resulting chunk size may vary due to nature of compression. PHP
  121. ;       outputs chunks that are few hundreds bytes each as a result of
  122. ;       compression. If you prefer a larger chunk size for better
  123. ;       performance, enable output_buffering in addition.
  124. ; Note: You need to use zlib.output_handler instead of the standard
  125. ;       output_handler, or otherwise the output will be corrupted.
  126. zlib.output_compression = Off
  127.  
  128. ; You cannot specify additional output handlers if zlib.output_compression
  129. ; is activated here. This setting does the same as output_handler but in
  130. ; a different order.
  131. ;zlib.output_handler =
  132.  
  133. ; Implicit flush tells PHP to tell the output layer to flush itself
  134. ; automatically after every output block.  This is equivalent to calling the
  135. ; PHP function flush() after each and every call to print() or echo() and each
  136. ; and every HTML block.  Turning this option on has serious performance
  137. ; implications and is generally recommended for debugging purposes only.
  138. implicit_flush = Off
  139.  
  140. ; The unserialize callback function will be called (with the undefined class'
  141. ; name as parameter), if the unserializer finds an undefined class
  142. ; which should be instanciated.
  143. ; A warning appears if the specified function is not defined, or if the
  144. ; function doesn't include/implement the missing class.
  145. ; So only set this entry, if you really want to implement such a
  146. ; callback-function.
  147. unserialize_callback_func=
  148.  
  149. ; When floats & doubles are serialized store serialize_precision significant
  150. ; digits after the floating point. The default value ensures that when floats
  151. ; are decoded with unserialize, the data will remain the same.
  152. serialize_precision = 100
  153.  
  154. ; Whether to enable the ability to force arguments to be passed by reference
  155. ; at function call time.  This method is deprecated and is likely to be
  156. ; unsupported in future versions of PHP/Zend.  The encouraged method of
  157. ; specifying which arguments should be passed by reference is in the function
  158. ; declaration.  You're encouraged to try and turn this option Off and make
  159. ; sure your scripts work properly with it in order to ensure they will work
  160. ; with future versions of the language (you will receive a warning each time
  161. ; you use this feature, and the argument will be passed by value instead of by
  162. ; reference).
  163. allow_call_time_pass_reference = On
  164.  
  165. ;
  166. ; Safe Mode
  167. ;
  168. safe_mode = Off
  169.  
  170. ; By default, Safe Mode does a UID compare check when
  171. ; opening files. If you want to relax this to a GID compare,
  172. ; then turn on safe_mode_gid.
  173. safe_mode_gid = Off
  174.  
  175. ; When safe_mode is on, UID/GID checks are bypassed when
  176. ; including files from this directory and its subdirectories.
  177. ; (directory must also be in include_path or full path must
  178. ; be used when including)
  179. safe_mode_include_dir =
  180.  
  181. ; When safe_mode is on, only executables located in the safe_mode_exec_dir
  182. ; will be allowed to be executed via the exec family of functions.
  183. safe_mode_exec_dir =
  184.  
  185. ; Setting certain environment variables may be a potential security breach.
  186. ; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
  187. ; the user may only alter environment variables whose names begin with the
  188. ; prefixes supplied here.  By default, users will only be able to set
  189. ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
  190. ;
  191. ; Note:  If this directive is empty, PHP will let the user modify ANY
  192. ; environment variable!
  193. safe_mode_allowed_env_vars = PHP_
  194.  
  195. ; This directive contains a comma-delimited list of environment variables that
  196. ; the end user won't be able to change using putenv().  These variables will be
  197. ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
  198. safe_mode_protected_env_vars = LD_LIBRARY_PATH
  199.  
  200. ; open_basedir, if set, limits all file operations to the defined directory
  201. ; and below.  This directive makes most sense if used in a per-directory
  202. ; or per-virtualhost web server configuration file. This directive is
  203. ; *NOT* affected by whether Safe Mode is turned On or Off.
  204. ;open_basedir =
  205.  
  206. ; This directive allows you to disable certain functions for security reasons.
  207. ; It receives a comma-delimited list of function names. This directive is
  208. ; *NOT* affected by whether Safe Mode is turned On or Off.
  209. disable_functions =
  210.  
  211. ; This directive allows you to disable certain classes for security reasons.
  212. ; It receives a comma-delimited list of class names. This directive is
  213. ; *NOT* affected by whether Safe Mode is turned On or Off.
  214. disable_classes =
  215.  
  216. ; Colors for Syntax Highlighting mode.  Anything that's acceptable in
  217. ; <font color="??????"> would work.
  218. ;highlight.string  = #DD0000
  219. ;highlight.comment = #FF9900
  220. ;highlight.keyword = #007700
  221. ;highlight.bg      = #FFFFFF
  222. ;highlight.default = #0000BB
  223. ;highlight.html    = #000000
  224.  
  225.  
  226. ;
  227. ; Misc
  228. ;
  229. ; Decides whether PHP may expose the fact that it is installed on the server
  230. ; (e.g. by adding its signature to the Web server header).  It is no security
  231. ; threat in any way, but it makes it possible to determine whether you use PHP
  232. ; on your server or not.
  233. expose_php = On
  234.  
  235.  
  236. ;;;;;;;;;;;;;;;;;;;
  237. ; Resource Limits ;
  238. ;;;;;;;;;;;;;;;;;;;
  239.  
  240. max_execution_time = 30     ; Maximum execution time of each script, in seconds
  241. max_input_time = 60    ; Maximum amount of time each script may spend parsing request data
  242. memory_limit = 8M      ; Maximum amount of memory a script may consume (8MB)
  243.  
  244.  
  245. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  246. ; Error handling and logging ;
  247. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  248.  
  249. ; error_reporting is a bit-field.  Or each number up to get desired error
  250. ; reporting level
  251. ; E_ALL             - All errors and warnings
  252. ; E_ERROR           - fatal run-time errors
  253. ; E_WARNING         - run-time warnings (non-fatal errors)
  254. ; E_PARSE           - compile-time parse errors
  255. ; E_NOTICE          - run-time notices (these are warnings which often result
  256. ;                     from a bug in your code, but it's possible that it was
  257. ;                     intentional (e.g., using an uninitialized variable and
  258. ;                     relying on the fact it's automatically initialized to an
  259. ;                     empty string)
  260. ; E_STRICT            - run-time notices, enable to have PHP suggest changes
  261. ;                     to your code which will ensure the best interoperability
  262. ;                     and forward compatibility of your code
  263. ; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
  264. ; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
  265. ;                     initial startup
  266. ; E_COMPILE_ERROR   - fatal compile-time errors
  267. ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
  268. ; E_USER_ERROR      - user-generated error message
  269. ; E_USER_WARNING    - user-generated warning message
  270. ; E_USER_NOTICE     - user-generated notice message
  271. ;
  272. ; Examples:
  273. ;
  274. ;   - Show all errors, except for notices and coding standards warnings
  275. ;
  276. ;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
  277. ;
  278. ;   - Show all errors, except for notices
  279. ;
  280. ;error_reporting = E_ALL & ~E_NOTICE
  281. ;
  282. ;   - Show only errors
  283. ;
  284. ;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
  285. ;
  286. ;   - Show all errors except for notices and coding standards warnings
  287. ;
  288. error_reporting  =  E_ALL & ~E_NOTICE & ~E_STRICT
  289.  
  290. ; Print out errors (as a part of the output).  For production web sites,
  291. ; you're strongly encouraged to turn this feature off, and use error logging
  292. ; instead (see below).  Keeping display_errors enabled on a production web site
  293. ; may reveal security information to end users, such as file paths on your Web
  294. ; server, your database schema or other information.
  295. display_errors = On
  296.  
  297. ; Even when display_errors is on, errors that occur during PHP's startup
  298. ; sequence are not displayed.  It's strongly recommended to keep
  299. ; display_startup_errors off, except for when debugging.
  300. display_startup_errors = Off
  301.  
  302. ; Log errors into a log file (server-specific log, stderr, or error_log (below))
  303. ; As stated above, you're strongly advised to use error logging in place of
  304. ; error displaying on production web sites.
  305. log_errors = Off
  306.  
  307. ; Set maximum length of log_errors. In error_log information about the source is
  308. ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
  309. log_errors_max_len = 1024
  310.  
  311. ; Do not log repeated messages. Repeated errors must occur in same file on same
  312. ; line until ignore_repeated_source is set true.
  313. ignore_repeated_errors = Off
  314.  
  315. ; Ignore source of message when ignoring repeated messages. When this setting
  316. ; is On you will not log errors with repeated messages from different files or
  317. ; sourcelines.
  318. ignore_repeated_source = Off
  319.  
  320. ; If this parameter is set to Off, then memory leaks will not be shown (on
  321. ; stdout or in the log). This has only effect in a debug compile, and if
  322. ; error reporting includes E_WARNING in the allowed list
  323. report_memleaks = On
  324.  
  325. ; Store the last error/warning message in $php_errormsg (boolean).
  326. track_errors = Off
  327.  
  328. ; Disable the inclusion of HTML tags in error messages.
  329. ; Note: Never use this feature for production boxes.
  330. ;html_errors = Off
  331.  
  332. ; If html_errors is set On PHP produces clickable error messages that direct
  333. ; to a page describing the error or function causing the error in detail.
  334. ; You can download a copy of the PHP manual from http://www.php.net/docs.php
  335. ; and change docref_root to the base URL of your local copy including the
  336. ; leading '/'. You must also specify the file extension being used including
  337. ; the dot.
  338. ; Note: Never use this feature for production boxes.
  339. ;docref_root = "/phpmanual/"
  340. ;docref_ext = .html
  341.  
  342. ; String to output before an error message.
  343. ;error_prepend_string = "<font color=ff0000>"
  344.  
  345. ; String to output after an error message.
  346. ;error_append_string = "</font>"
  347.  
  348. ; Log errors to specified file.
  349. ;error_log = filename
  350.  
  351. ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
  352. ;error_log = syslog
  353.  
  354.  
  355. ;;;;;;;;;;;;;;;;;
  356. ; Data Handling ;
  357. ;;;;;;;;;;;;;;;;;
  358. ;
  359. ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
  360.  
  361. ; The separator used in PHP generated URLs to separate arguments.
  362. ; Default is "&".
  363. ;arg_separator.output = "&"
  364.  
  365. ; List of separator(s) used by PHP to parse input URLs into variables.
  366. ; Default is "&".
  367. ; NOTE: Every character in this directive is considered as separator!
  368. ;arg_separator.input = ";&"
  369.  
  370. ; This directive describes the order in which PHP registers GET, POST, Cookie,
  371. ; Environment and Built-in variables (G, P, C, E & S respectively, often
  372. ; referred to as EGPCS or GPC).  Registration is done from left to right, newer
  373. ; values override older values.
  374. variables_order = "EGPCS"
  375.  
  376. ; Whether or not to register the EGPCS variables as global variables.  You may
  377. ; want to turn this off if you don't want to clutter your scripts' global scope
  378. ; with user data.  This makes most sense when coupled with track_vars - in which
  379. ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
  380. ; variables.
  381. ;
  382. ; You should do your best to write your scripts so that they do not require
  383. ; register_globals to be on;  Using form variables as globals can easily lead
  384. ; to possible security problems, if the code is not very well thought of.
  385. register_globals = Off
  386.  
  387. ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
  388. ; and friends.  If you're not using them, it's recommended to turn them off,
  389. ; for performance reasons.
  390. register_long_arrays = On
  391.  
  392. ; This directive tells PHP whether to declare the argv&argc variables (that
  393. ; would contain the GET information).  If you don't use these variables, you
  394. ; should turn it off for increased performance.
  395. register_argc_argv = On
  396.  
  397. ; Maximum size of POST data that PHP will accept.
  398. post_max_size = 8M
  399.  
  400. ; Magic quotes
  401. ;
  402.  
  403. ; Magic quotes for incoming GET/POST/Cookie data.
  404. magic_quotes_gpc = On
  405.  
  406. ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
  407. magic_quotes_runtime = Off
  408.  
  409. ; Use Sybase-style magic quotes (escape ' with '' instead of \').
  410. magic_quotes_sybase = Off
  411.  
  412. ; Automatically add files before or after any PHP document.
  413. auto_prepend_file =
  414. auto_append_file =
  415.  
  416. ; As of 4.0b4, PHP always outputs a character encoding by default in
  417. ; the Content-type: header.  To disable sending of the charset, simply
  418. ; set it to be empty.
  419. ;
  420. ; PHP's built-in default is text/html
  421. default_mimetype = "text/html"
  422. ;default_charset = "iso-8859-1"
  423.  
  424. ; Always populate the $HTTP_RAW_POST_DATA variable.
  425. ;always_populate_raw_post_data = On
  426.  
  427.  
  428. ;;;;;;;;;;;;;;;;;;;;;;;;;
  429. ; Paths and Directories ;
  430. ;;;;;;;;;;;;;;;;;;;;;;;;;
  431.  
  432. ; UNIX: "/path1:/path2"
  433. ;include_path = ".:/php/includes"
  434. ;
  435. ; Windows: "\path1;\path2"
  436. ;include_path = ".;c:\php\includes"
  437.  
  438. ; The root of the PHP pages, used only if nonempty.
  439. ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
  440. ; if you are running php as a CGI under any web server (other than IIS)
  441. ; see documentation for security issues.  The alternate is to use the
  442. ; cgi.force_redirect configuration below
  443. doc_root =
  444.  
  445. ; The directory under which PHP opens the script using /~username used only
  446. ; if nonempty.
  447. user_dir =
  448.  
  449. ; Directory in which the loadable extensions (modules) reside.
  450. extension_dir = "./"
  451.  
  452. ; Whether or not to enable the dl() function.  The dl() function does NOT work
  453. ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
  454. ; disabled on them.
  455. enable_dl = On
  456.  
  457. ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
  458. ; most web servers.  Left undefined, PHP turns this on by default.  You can
  459. ; turn it off here AT YOUR OWN RISK
  460. ; **You CAN safely turn this off for IIS, in fact, you MUST.**
  461. ; cgi.force_redirect = 1
  462.  
  463. ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
  464. ; every request.
  465. ; cgi.nph = 1
  466.  
  467. ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
  468. ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
  469. ; will look for to know it is OK to continue execution.  Setting this variable MAY
  470. ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
  471. ; cgi.redirect_status_env = ;
  472.  
  473. ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
  474. ; security tokens of the calling client.  This allows IIS to define the
  475. ; security context that the request runs under.  mod_fastcgi under Apache
  476. ; does not currently support this feature (03/17/2002)
  477. ; Set to 1 if running under IIS.  Default is zero.
  478. ; fastcgi.impersonate = 1;
  479.  
  480. ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
  481. ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
  482. ; is supported by Apache. When this option is set to 1 PHP will send
  483. ; RFC2616 compliant header.
  484. ; Default is zero.
  485. ;cgi.rfc2616_headers = 0
  486.  
  487.  
  488. ;;;;;;;;;;;;;;;;
  489. ; File Uploads ;
  490. ;;;;;;;;;;;;;;;;
  491.  
  492. ; Whether to allow HTTP file uploads.
  493. file_uploads = On
  494.  
  495. ; Temporary directory for HTTP uploaded files (will use system default if not
  496. ; specified).
  497. ;upload_tmp_dir =
  498.  
  499. ; Maximum allowed size for uploaded files.
  500. upload_max_filesize = 2M
  501.  
  502.  
  503. ;;;;;;;;;;;;;;;;;;
  504. ; Fopen wrappers ;
  505. ;;;;;;;;;;;;;;;;;;
  506.  
  507. ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
  508. allow_url_fopen = On
  509.  
  510. ; Define the anonymous ftp password (your email address)
  511. ;from="john@doe.com"
  512.  
  513. ; Define the User-Agent string
  514. ; user_agent="PHP"
  515.  
  516. ; Default timeout for socket based streams (seconds)
  517. default_socket_timeout = 60
  518.  
  519. ; If your scripts have to deal with files from Macintosh systems,
  520. ; or you are running on a Mac and need to deal with files from
  521. ; unix or win32 systems, setting this flag will cause PHP to
  522. ; automatically detect the EOL character in those files so that
  523. ; fgets() and file() will work regardless of the source of the file.
  524. ; auto_detect_line_endings = Off
  525.  
  526.  
  527. ;;;;;;;;;;;;;;;;;;;;;;
  528. ; Dynamic Extensions ;
  529. ;;;;;;;;;;;;;;;;;;;;;;
  530. ;
  531. ; If you wish to have an extension loaded automatically, use the following
  532. ; syntax:
  533. ;
  534. ;   extension=modulename.extension
  535. ;
  536. ; For example, on Windows:
  537. ;
  538. ;   extension=msql.dll
  539. ;
  540. ; ... or under UNIX:
  541. ;
  542. ;   extension=msql.so
  543. ;
  544. ; Note that it should be the name of the module only; no directory information
  545. ; needs to go here.  Specify the location of the extension with the
  546. ; extension_dir directive above.
  547.  
  548.  
  549. ;Windows Extensions
  550. ;Note that ODBC support is built in, so no dll is needed for it.
  551. ;
  552.  
  553. ;extension=php_bz2.dll
  554. ;extension=php_cpdf.dll
  555. ;extension=php_curl.dll
  556. ;extension=php_dba.dll
  557. ;extension=php_dbase.dll
  558. ;extension=php_dbx.dll
  559. ;extension=php_exif.dll
  560. ;extension=php_fdf.dll
  561. ;extension=php_filepro.dll
  562. ;extension=php_gd2.dll
  563. ;extension=php_gettext.dll
  564. ;extension=php_iconv.dll
  565. ;extension=php_ifx.dll
  566. ;extension=php_iisfunc.dll
  567. ;extension=php_imap.dll
  568. ;extension=php_interbase.dll
  569. ;extension=php_java.dll
  570. ;extension=php_ldap.dll
  571. ;extension=php_mbstring.dll
  572. ;extension=php_mcrypt.dll
  573. ;extension=php_mhash.dll
  574. ;extension=php_mime_magic.dll
  575. ;extension=php_ming.dll
  576. ;extension=php_mssql.dll
  577. ;extension=php_msql.dll
  578. ;extension=php_mysql.dll
  579. ;extension=php_oci8.dll
  580. ;extension=php_openssl.dll
  581. ;extension=php_oracle.dll
  582. ;extension=php_pdf.dll
  583. ;extension=php_pgsql.dll
  584. ;extension=php_shmop.dll
  585. ;extension=php_snmp.dll
  586. ;extension=php_sockets.dll
  587. ;extension=php_sybase_ct.dll
  588. ;extension=php_tidy.dll
  589. ;extension=php_w32api.dll
  590. ;extension=php_xmlrpc.dll
  591. ;extension=php_xsl.dll
  592. ;extension=php_yaz.dll
  593. ;extension=php_zip.dll
  594.  
  595.  
  596. ;;;;;;;;;;;;;;;;;;;
  597. ; Module Settings ;
  598. ;;;;;;;;;;;;;;;;;;;
  599.  
  600. [Syslog]
  601. ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
  602. ; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
  603. ; runtime, you can define these variables by calling define_syslog_variables().
  604. define_syslog_variables  = Off
  605.  
  606. [mail function]
  607. ; For Win32 only.
  608. SMTP = localhost
  609. smtp_port = 25
  610.  
  611. ; For Win32 only.
  612. ;sendmail_from = me@example.com
  613.  
  614. ; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
  615. ;sendmail_path =
  616.  
  617. ; Force the addition of the specified parameters to be passed as extra parameters
  618. ; to the sendmail binary. These parameters will always replace the value of
  619. ; the 5th parameter to mail(), even in safe mode.
  620. ;mail.force_extra_parameters =
  621.  
  622. [SQL]
  623. sql.safe_mode = Off
  624.  
  625. [ODBC]
  626. ;odbc.default_db    =  Not yet implemented
  627. ;odbc.default_user  =  Not yet implemented
  628. ;odbc.default_pw    =  Not yet implemented
  629.  
  630. ; Allow or prevent persistent links.
  631. odbc.allow_persistent = On
  632.  
  633. ; Check that a connection is still valid before reuse.
  634. odbc.check_persistent = On
  635.  
  636. ; Maximum number of persistent links.  -1 means no limit.
  637. odbc.max_persistent = -1
  638.  
  639. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  640. odbc.max_links = -1
  641.  
  642. ; Handling of LONG fields.  Returns number of bytes to variables.  0 means
  643. ; passthru.
  644. odbc.defaultlrl = 4096
  645.  
  646. ; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
  647. ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
  648. ; of uodbc.defaultlrl and uodbc.defaultbinmode
  649. odbc.defaultbinmode = 1
  650.  
  651. [MySQL]
  652. ; Allow or prevent persistent links.
  653. mysql.allow_persistent = On
  654.  
  655. ; Maximum number of persistent links.  -1 means no limit.
  656. mysql.max_persistent = -1
  657.  
  658. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  659. mysql.max_links = -1
  660.  
  661. ; Default port number for mysql_connect().  If unset, mysql_connect() will use
  662. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  663. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  664. ; at MYSQL_PORT.
  665. mysql.default_port =
  666.  
  667. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  668. ; MySQL defaults.
  669. mysql.default_socket =
  670.  
  671. ; Default host for mysql_connect() (doesn't apply in safe mode).
  672. mysql.default_host =
  673.  
  674. ; Default user for mysql_connect() (doesn't apply in safe mode).
  675. mysql.default_user =
  676.  
  677. ; Default password for mysql_connect() (doesn't apply in safe mode).
  678. ; Note that this is generally a *bad* idea to store passwords in this file.
  679. ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
  680. ; and reveal this password!  And of course, any users with read access to this
  681. ; file will be able to reveal the password as well.
  682. mysql.default_password =
  683.  
  684. ; Maximum time (in secondes) for connect timeout. -1 means no limit
  685. mysql.connect_timeout = 60
  686.  
  687. ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
  688. ; SQL-Errors will be displayed.
  689. mysql.trace_mode = Off
  690.  
  691. [MySQLI]
  692.  
  693. ; Maximum number of links.  -1 means no limit.
  694. mysqli.max_links = -1
  695.  
  696. ; Default port number for mysqli_connect().  If unset, mysqli_connect() will use
  697. ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
  698. ; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
  699. ; at MYSQL_PORT.
  700. mysqli.default_port = 3306
  701.  
  702. ; Default socket name for local MySQL connects.  If empty, uses the built-in
  703. ; MySQL defaults.
  704. mysqli.default_socket =
  705.  
  706. ; Default host for mysql_connect() (doesn't apply in safe mode).
  707. mysqli.default_host =
  708.  
  709. ; Default user for mysql_connect() (doesn't apply in safe mode).
  710. mysqli.default_user =
  711.  
  712. ; Default password for mysqli_connect() (doesn't apply in safe mode).
  713. ; Note that this is generally a *bad* idea to store passwords in this file.
  714. ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_password")
  715. ; and reveal this password!  And of course, any users with read access to this
  716. ; file will be able to reveal the password as well.
  717. mysqli.default_password =
  718.  
  719. ; Allow or prevent reconnect
  720. mysqli.reconnect = Off
  721.  
  722. [mSQL]
  723. ; Allow or prevent persistent links.
  724. msql.allow_persistent = On
  725.  
  726. ; Maximum number of persistent links.  -1 means no limit.
  727. msql.max_persistent = -1
  728.  
  729. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  730. msql.max_links = -1
  731.  
  732. [PostgresSQL]
  733. ; Allow or prevent persistent links.
  734. pgsql.allow_persistent = On
  735.  
  736. ; Detect broken persistent links always with pg_pconnect().
  737. ; Auto reset feature requires a little overheads.
  738. pgsql.auto_reset_persistent = Off
  739.  
  740. ; Maximum number of persistent links.  -1 means no limit.
  741. pgsql.max_persistent = -1
  742.  
  743. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  744. pgsql.max_links = -1
  745.  
  746. ; Ignore PostgreSQL backends Notice message or not.
  747. ; Notice message logging require a little overheads.
  748. pgsql.ignore_notice = 0
  749.  
  750. ; Log PostgreSQL backends Noitce message or not.
  751. ; Unless pgsql.ignore_notice=0, module cannot log notice message.
  752. pgsql.log_notice = 0
  753.  
  754. [Sybase]
  755. ; Allow or prevent persistent links.
  756. sybase.allow_persistent = On
  757.  
  758. ; Maximum number of persistent links.  -1 means no limit.
  759. sybase.max_persistent = -1
  760.  
  761. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  762. sybase.max_links = -1
  763.  
  764. ;sybase.interface_file = "/usr/sybase/interfaces"
  765.  
  766. ; Minimum error severity to display.
  767. sybase.min_error_severity = 10
  768.  
  769. ; Minimum message severity to display.
  770. sybase.min_message_severity = 10
  771.  
  772. ; Compatability mode with old versions of PHP 3.0.
  773. ; If on, this will cause PHP to automatically assign types to results according
  774. ; to their Sybase type, instead of treating them all as strings.  This
  775. ; compatability mode will probably not stay around forever, so try applying
  776. ; whatever necessary changes to your code, and turn it off.
  777. sybase.compatability_mode = Off
  778.  
  779. [Sybase-CT]
  780. ; Allow or prevent persistent links.
  781. sybct.allow_persistent = On
  782.  
  783. ; Maximum number of persistent links.  -1 means no limit.
  784. sybct.max_persistent = -1
  785.  
  786. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  787. sybct.max_links = -1
  788.  
  789. ; Minimum server message severity to display.
  790. sybct.min_server_severity = 10
  791.  
  792. ; Minimum client message severity to display.
  793. sybct.min_client_severity = 10
  794.  
  795. [dbx]
  796. ; returned column names can be converted for compatibility reasons
  797. ; possible values for dbx.colnames_case are
  798. ; "unchanged" (default, if not set)
  799. ; "lowercase"
  800. ; "uppercase"
  801. ; the recommended default is either upper- or lowercase, but
  802. ; unchanged is currently set for backwards compatibility
  803. dbx.colnames_case = "unchanged"
  804.  
  805. [bcmath]
  806. ; Number of decimal digits for all bcmath functions.
  807. bcmath.scale = 0
  808.  
  809. [browscap]
  810. ;browscap = extra/browscap.ini
  811.  
  812. [Informix]
  813. ; Default host for ifx_connect() (doesn't apply in safe mode).
  814. ifx.default_host =
  815.  
  816. ; Default user for ifx_connect() (doesn't apply in safe mode).
  817. ifx.default_user =
  818.  
  819. ; Default password for ifx_connect() (doesn't apply in safe mode).
  820. ifx.default_password =
  821.  
  822. ; Allow or prevent persistent links.
  823. ifx.allow_persistent = On
  824.  
  825. ; Maximum number of persistent links.  -1 means no limit.
  826. ifx.max_persistent = -1
  827.  
  828. ; Maximum number of links (persistent + non-persistent).  -1 means no limit.
  829. ifx.max_links = -1
  830.  
  831. ; If on, select statements return the contents of a text blob instead of its id.
  832. ifx.textasvarchar = 0
  833.  
  834. ; If on, select statements return the contents of a byte blob instead of its id.
  835. ifx.byteasvarchar = 0
  836.  
  837. ; Trailing blanks are stripped from fixed-length char columns.  May help the
  838. ; life of Informix SE users.
  839. ifx.charasvarchar = 0
  840.  
  841. ; If on, the contents of text and byte blobs are dumped to a file instead of
  842. ; keeping them in memory.
  843. ifx.blobinfile = 0
  844.  
  845. ; NULL's are returned as empty strings, unless this is set to 1.  In that case,
  846. ; NULL's are returned as string 'NULL'.
  847. ifx.nullformat = 0
  848.  
  849. [Session]
  850. ; Handler used to store/retrieve data.
  851. session.save_handler = files
  852.  
  853. ; Argument passed to save_handler.  In the case of files, this is the path
  854. ; where data files are stored. Note: Windows users have to change this
  855. ; variable in order to use PHP's session functions.
  856. ;
  857. ; As of PHP 4.0.1, you can define the path as:
  858. ;
  859. ;     session.save_path = "N;/path"
  860. ;
  861. ; where N is an integer.  Instead of storing all the session files in
  862. ; /path, what this will do is use subdirectories N-levels deep, and
  863. ; store the session data in those directories.  This is useful if you
  864. ; or your OS have problems with lots of files in one directory, and is
  865. ; a more efficient layout for servers that handle lots of sessions.
  866. ;
  867. ; NOTE 1: PHP will not create this directory structure automatically.
  868. ;         You can use the script in the ext/session dir for that purpose.
  869. ; NOTE 2: See the section on garbage collection below if you choose to
  870. ;         use subdirectories for session storage
  871. ;
  872. ; The file storage module creates files using mode 600 by default.
  873. ; You can change that by using
  874. ;
  875. ;     session.save_path = "N;MODE;/path"
  876. ;
  877. ; where MODE is the octal representation of the mode. Note that this
  878. ; does not overwrite the process's umask.
  879. ;session.save_path = "/tmp"
  880.  
  881. ; Whether to use cookies.
  882. session.use_cookies = 1
  883.  
  884. ; This option enables administrators to make their users invulnerable to
  885. ; attacks which involve passing session ids in URLs; defaults to 0.
  886. ; session.use_only_cookies = 1
  887.  
  888. ; Name of the session (used as cookie name).
  889. session.name = PHPSESSID
  890.  
  891. ; Initialize session on request startup.
  892. session.auto_start = 0
  893.  
  894. ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
  895. session.cookie_lifetime = 0
  896.  
  897. ; The path for which the cookie is valid.
  898. session.cookie_path = /
  899.  
  900. ; The domain for which the cookie is valid.
  901. session.cookie_domain =
  902.  
  903. ; Handler used to serialize data.  php is the standard serializer of PHP.
  904. session.serialize_handler = php
  905.  
  906. ; Define the probability that the 'garbage collection' process is started
  907. ; on every session initialization.
  908. ; The probability is calculated by using gc_probability/gc_divisor,
  909. ; e.g. 1/100 means there is a 1% chance that the GC process starts
  910. ; on each request.
  911.  
  912. session.gc_probability = 1
  913. session.gc_divisor     = 100
  914.  
  915. ; After this number of seconds, stored data will be seen as 'garbage' and
  916. ; cleaned up by the garbage collection process.
  917. session.gc_maxlifetime = 1440
  918.  
  919. ; NOTE: If you are using the subdirectory option for storing session files
  920. ;       (see session.save_path above), then garbage collection does *not*
  921. ;       happen automatically.  You will need to do your own garbage
  922. ;       collection through a shell script, cron entry, or some other method.
  923. ;       For example, the following script would is the equivalent of
  924. ;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
  925. ;          cd /path/to/sessions; find -cmin +24 | xargs rm
  926.  
  927. ; PHP 4.2 and less have an undocumented feature/bug that allows you to
  928. ; to initialize a session variable in the global scope, albeit register_globals
  929. ; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
  930. ; You can disable the feature and the warning separately. At this time,
  931. ; the warning is only displayed, if bug_compat_42 is enabled.
  932.  
  933. session.bug_compat_42 = 1
  934. session.bug_compat_warn = 1
  935.  
  936. ; Check HTTP Referer to invalidate externally stored URLs containing ids.
  937. ; HTTP_REFERER has to contain this substring for the session to be
  938. ; considered as valid.
  939. session.referer_check =
  940.  
  941. ; How many bytes to read from the file.
  942. session.entropy_length = 0
  943.  
  944. ; Specified here to create the session id.
  945. session.entropy_file =
  946.  
  947. ;session.entropy_length = 16
  948.  
  949. ;session.entropy_file = /dev/urandom
  950.  
  951. ; Set to {nocache,private,public,} to determine HTTP caching aspects
  952. ; or leave this empty to avoid sending anti-caching headers.
  953. session.cache_limiter = nocache
  954.  
  955. ; Document expires after n minutes.
  956. session.cache_expire = 180
  957.  
  958. ; trans sid support is disabled by default.
  959. ; Use of trans sid may risk your users security.
  960. ; Use this option with caution.
  961. ; - User may send URL contains active session ID
  962. ;   to other person via. email/irc/etc.
  963. ; - URL that contains active session ID may be stored
  964. ;   in publically accessible computer.
  965. ; - User may access your site with the same session ID
  966. ;   always using URL stored in browser's history or bookmarks.
  967. session.use_trans_sid = 0
  968.  
  969. ; Select a hash function
  970. ; 0: MD5   (128 bits)
  971. ; 1: SHA-1 (160 bits)
  972. session.hash_function = 0
  973.  
  974. ; Define how many bits are stored in each character when converting
  975. ; the binary hash data to something readable.
  976. ;
  977. ; 4 bits: 0-9, a-f
  978. ; 5 bits: 0-9, a-v
  979. ; 6 bits: 0-9, a-z, A-Z, "-", ","
  980. session.hash_bits_per_character = 4
  981.  
  982. ; The URL rewriter will look for URLs in a defined set of HTML tags.
  983. ; form/fieldset are special; if you include them here, the rewriter will
  984. ; add a hidden <input> field with the info which is otherwise appended
  985. ; to URLs.  If you want XHTML conformity, remove the form entry.
  986. ; Note that all valid entries require a "=", even if no value follows.
  987. url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
  988.  
  989. [MSSQL]
  990. ; Allow or prevent persistent links.
  991. mssql.allow_persistent = On
  992.  
  993. ; Maximum number of persistent links.  -1 means no limit.
  994. mssql.max_persistent = -1
  995.  
  996. ; Maximum number of links (persistent+non persistent).  -1 means no limit.
  997. mssql.max_links = -1
  998.  
  999. ; Minimum error severity to display.
  1000. mssql.min_error_severity = 10
  1001.  
  1002. ; Minimum message severity to display.
  1003. mssql.min_message_severity = 10
  1004.  
  1005. ; Compatability mode with old versions of PHP 3.0.
  1006. mssql.compatability_mode = Off
  1007.  
  1008. ; Connect timeout
  1009. ;mssql.connect_timeout = 5
  1010.  
  1011. ; Query timeout
  1012. ;mssql.timeout = 60
  1013.  
  1014. ; Valid range 0 - 2147483647.  Default = 4096.
  1015. ;mssql.textlimit = 4096
  1016.  
  1017. ; Valid range 0 - 2147483647.  Default = 4096.
  1018. ;mssql.textsize = 4096
  1019.  
  1020. ; Limits the number of records in each batch.  0 = all records in one batch.
  1021. ;mssql.batchsize = 0
  1022.  
  1023. ; Specify how datetime and datetim4 columns are returned
  1024. ; On => Returns data converted to SQL server settings
  1025. ; Off => Returns values as YYYY-MM-DD hh:mm:ss
  1026. ;mssql.datetimeconvert = On
  1027.  
  1028. ; Use NT authentication when connecting to the server
  1029. mssql.secure_connection = Off
  1030.  
  1031. ; Specify max number of processes. Default = 25
  1032. ;mssql.max_procs = 25
  1033.  
  1034. [Assertion]
  1035. ; Assert(expr); active by default.
  1036. ;assert.active = On
  1037.  
  1038. ; Issue a PHP warning for each failed assertion.
  1039. ;assert.warning = On
  1040.  
  1041. ; Don't bail out by default.
  1042. ;assert.bail = Off
  1043.  
  1044. ; User-function to be called if an assertion fails.
  1045. ;assert.callback = 0
  1046.  
  1047. ; Eval the expression with current error_reporting().  Set to true if you want
  1048. ; error_reporting(0) around the eval().
  1049. ;assert.quiet_eval = 0
  1050.  
  1051. [Ingres II]
  1052. ; Allow or prevent persistent links.
  1053. ingres.allow_persistent = On
  1054.  
  1055. ; Maximum number of persistent links.  -1 means no limit.
  1056. ingres.max_persistent = -1
  1057.  
  1058. ; Maximum number of links, including persistents.  -1 means no limit.
  1059. ingres.max_links = -1
  1060.  
  1061. ; Default database (format: [node_id::]dbname[/srv_class]).
  1062. ingres.default_database =
  1063.  
  1064. ; Default user.
  1065. ingres.default_user =
  1066.  
  1067. ; Default password.
  1068. ingres.default_password =
  1069.  
  1070. [Verisign Payflow Pro]
  1071. ; Default Payflow Pro server.
  1072. pfpro.defaulthost = "test-payflow.verisign.com"
  1073.  
  1074. ; Default port to connect to.
  1075. pfpro.defaultport = 443
  1076.  
  1077. ; Default timeout in seconds.
  1078. pfpro.defaulttimeout = 30
  1079.  
  1080. ; Default proxy IP address (if required).
  1081. ;pfpro.proxyaddress =
  1082.  
  1083. ; Default proxy port.
  1084. ;pfpro.proxyport =
  1085.  
  1086. ; Default proxy logon.
  1087. ;pfpro.proxylogon =
  1088.  
  1089. ; Default proxy password.
  1090. ;pfpro.proxypassword =
  1091.  
  1092. [Sockets]
  1093. ; Use the system read() function instead of the php_read() wrapper.
  1094. sockets.use_system_read = On
  1095.  
  1096. [com]
  1097. ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
  1098. ;com.typelib_file =
  1099. ; allow Distributed-COM calls
  1100. ;com.allow_dcom = true
  1101. ; autoregister constants of a components typlib on com_load()
  1102. ;com.autoregister_typelib = true
  1103. ; register constants casesensitive
  1104. ;com.autoregister_casesensitive = false
  1105. ; show warnings on duplicate constat registrations
  1106. ;com.autoregister_verbose = true
  1107.  
  1108. [mbstring]
  1109. ; language for internal character representation.
  1110. ;mbstring.language = Japanese
  1111.  
  1112. ; internal/script encoding.
  1113. ; Some encoding cannot work as internal encoding.
  1114. ; (e.g. SJIS, BIG5, ISO-2022-*)
  1115. ;mbstring.internal_encoding = EUC-JP
  1116.  
  1117. ; http input encoding.
  1118. ;mbstring.http_input = auto
  1119.  
  1120. ; http output encoding. mb_output_handler must be
  1121. ; registered as output buffer to function
  1122. ;mbstring.http_output = SJIS
  1123.  
  1124. ; enable automatic encoding translation accoding to
  1125. ; mbstring.internal_encoding setting. Input chars are
  1126. ; converted to internal encoding by setting this to On.
  1127. ; Note: Do _not_ use automatic encoding translation for
  1128. ;       portable libs/applications.
  1129. ;mbstring.encoding_translation = Off
  1130.  
  1131. ; automatic encoding detection order.
  1132. ; auto means
  1133. ;mbstring.detect_order = auto
  1134.  
  1135. ; substitute_character used when character cannot be converted
  1136. ; one from another
  1137. ;mbstring.substitute_character = none;
  1138.  
  1139. ; overload(replace) single byte functions by mbstring functions.
  1140. ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
  1141. ; etc. Possible values are 0,1,2,4 or combination of them.
  1142. ; For example, 7 for overload everything.
  1143. ; 0: No overload
  1144. ; 1: Overload mail() function
  1145. ; 2: Overload str*() functions
  1146. ; 4: Overload ereg*() functions
  1147. ;mbstring.func_overload = 0
  1148.  
  1149. [FrontBase]
  1150. ;fbsql.allow_persistent = On
  1151. ;fbsql.autocommit = On
  1152. ;fbsql.default_database =
  1153. ;fbsql.default_database_password =
  1154. ;fbsql.default_host =
  1155. ;fbsql.default_password =
  1156. ;fbsql.default_user = "_SYSTEM"
  1157. ;fbsql.generate_warnings = Off
  1158. ;fbsql.max_connections = 128
  1159. ;fbsql.max_links = 128
  1160. ;fbsql.max_persistent = -1
  1161. ;fbsql.max_results = 128
  1162. ;fbsql.batchSize = 1000
  1163.  
  1164. [exif]
  1165. ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
  1166. ; With mbstring support this will automatically be converted into the encoding
  1167. ; given by corresponding encode setting. When empty mbstring.internal_encoding
  1168. ; is used. For the decode settings you can distinguish between motorola and
  1169. ; intel byte order. A decode setting cannot be empty.
  1170. ;exif.encode_unicode = ISO-8859-15
  1171. ;exif.decode_unicode_motorola = UCS-2BE
  1172. ;exif.decode_unicode_intel    = UCS-2LE
  1173. ;exif.encode_jis =
  1174. ;exif.decode_jis_motorola = JIS
  1175. ;exif.decode_jis_intel    = JIS
  1176.  
  1177. [Tidy]
  1178. ; The path to a default tidy configuration file to use when using tidy
  1179. ;tidy.default_config = /usr/local/lib/php/default.tcfg
  1180.  
  1181. ; Should tidy clean and repair output automatically?
  1182. ; WARNING: Do not use this option if you are generating non-html content
  1183. ; such as dynamic images
  1184. tidy.clean_output = Off
  1185.  
  1186. [soap]
  1187. ; Enables or disables WSDL caching feature.
  1188. soap.wsdl_cache_enabled=1
  1189. ; Sets the directory name where SOAP extension will put cache files.
  1190. soap.wsdl_cache_dir="/tmp"
  1191. ; (time to live) Sets the number of second while cached file will be used 
  1192. ; instead of original one.
  1193. soap.wsdl_cache_ttl=86400
  1194.  
  1195. ; Local Variables:
  1196. ; tab-width: 4
  1197. ; End:
  1198.